home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / SFINGR16._M_ < prev    next >
Text File  |  1997-07-26  |  606b  |  29 lines

  1. #
  2. # Microsoft makefile for SFINGR [Win16]
  3. #
  4. # To use: "NMAKE SFINGR16._M_"
  5. #
  6.  
  7. CCFLAGS = -c -AS -G2sw -Oas -Zp
  8.  
  9. sfingr.exe: sfingr.res sfingr.obj sfingr.def wil16.lib \
  10.            about.obj paint.obj str.obj
  11.     link /NOD /NOE sfingr about paint str,,,libw slibcew wil16 winsock,sfingr.def;
  12.     rc sfingr.res
  13.  
  14. sfingr.res: sfingr.rc
  15.     rc -r sfingr.rc
  16.  
  17. about.obj: about.c about.h
  18.    cl $(CCFLAGS)  about.c
  19.  
  20. paint.obj: paint.c paint.h wil.h
  21.     cl $(CCFLAGS)  paint.c
  22.  
  23. str.obj: str.c str.h wil.h
  24.     cl $(CCFLAGS)  str.c
  25.  
  26. sfingr.obj: sfingr.c wil.h
  27.     cl $(CCFLAGS)  sfingr.c
  28.   
  29.